From: Dan Nicolaescu Date: Wed, 26 Aug 2009 20:22:17 +0000 (+0000) Subject: (Fcall_process): Remove always true #if. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10878 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6f698cadb52094db3bdf7f0d4ccc0925007074ea;p=emacs.git (Fcall_process): Remove always true #if. --- diff --git a/src/ChangeLog b/src/ChangeLog index cc9e230daa2..ec72782272a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2009-08-26 Dan Nicolaescu + * callproc.c (Fcall_process): Remove always true #if. + * lisp.h: Replace #if 0 code for checking with text pointing to the --enable-checking configure flag. diff --git a/src/callproc.c b/src/callproc.c index 54d270b57ef..14d1ac0b3d6 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -793,13 +793,11 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) if (process_coding.mode & CODING_MODE_LAST_BLOCK) break; -#if (CALLPROC_BUFFER_SIZE_MIN != CALLPROC_BUFFER_SIZE_MAX) /* Make the buffer bigger as we continue to read more data, but not past CALLPROC_BUFFER_SIZE_MAX. */ if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize) if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX) bufsize = CALLPROC_BUFFER_SIZE_MAX; -#endif if (display_p) {